home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000252_fdc@columbia.edu_Wed Jul 31 11:14:08 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  51 lines

  1. Article: 13567 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.os.linux.misc,comp.protocols.kermit.misc
  5. Subject: Re: utf-8 translator
  6. Date: 31 Jul 2002 11:13:23 -0400
  7. Organization: Columbia University
  8. Lines: 34
  9. Message-ID: <ai8uqj$rei$1@watsol.cc.columbia.edu>
  10. References: <HRG19.467915$uo6.4356469@telenews.teleline.es>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1028128407 12672 128.59.39.139 (31 Jul 2002 15:13:27 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 31 Jul 2002 15:13:27 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.os.linux.misc:556882 comp.protocols.kermit.misc:13567
  16.  
  17. In article <HRG19.467915$uo6.4356469@telenews.teleline.es>,
  18. =?ISO-8859-1?Q?Xos=E9?=  <xosecalvo@terra.es> wrote:
  19. : I'm looking for a programme that can translate files, mostly HTML and MySQL 
  20. : dump files, to utf-8, as I'm trying to move everything into that direction.
  21. : Do they exist? What I've found is specific to certain development 
  22. : environments (vg. xml-i18n-tools).
  23. One such tool is C-Kermit:
  24.  
  25.   http://www.columbia.edu/kermit/
  26.  
  27. in which the command is:
  28.  
  29.   translate <in-file> <from-charset> <to-charset> <out-file>
  30.  
  31. For example:
  32.  
  33.   translate foo.txt latin2 utf8 foo.utf8
  34.  
  35. This is just a side benefit of having character-set conversion built into
  36. Kermit's communications.  In other words, you could just as easily convert
  37. a file's character set as part of the download or upload operation using
  38. Kermit or FTP protocol.  See:
  39.  
  40.   http://www.columbia.edu/kermit/case14.html
  41.  
  42. for a tutorial about Kermit's character-set conversion features, and:
  43.  
  44.   http://www.columbia.edu/kermit/case08.html
  45.  
  46. about Unicode.
  47.  
  48. - Frank
  49.